﻿

    .dashboard-box

{
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 20px 10px;
    margin: 100px 0;
}

label {
    margin-bottom: 0px;
}


.faq-heading {
    font-weight: 600;
    font-size: 22px;
    -webkit-transition: text-indent 0.2s;
    text-indent: 20px;
    color: #333;
    margin-top: 1rem;
}

.faq-text {
    font-family: system-ui;
    font-weight: 600;
    color: #5f6368;
    width: 95%;
    padding-left: 20px;
    margin-bottom: 30px;
    text-align: justify;
}

.faq {
    width: 100%;
    margin: 0 auto;
    background: white;
    border-radius: 4px;
    position: relative;
    border: 1px solid #E1E1E1;
}

    .faq label {
        display: block;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        height: 56px;
        padding-top: 1px;
        background-color: #FAFAFA;
        border-bottom: 1px solid #E1E1E1;
    }

    .faq input[type="checkbox"] {
        display: none;
    }

    .faq .faq-arrow {
        width: 15px;
        height: 15px;
        transition: -webkit-transform 0.8s;
        transition: transform 0.8s;
        transition: transform 0.8s, -webkit-transform 0.8s;
        -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
        border-top: 2px solid rgba(0, 0, 0, 0.33);
        border-right: 2px solid rgba(0, 0, 0, 0.33);
        float: right;
        position: relative;
        top: -65px;
        right: 27px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .faq input[type="checkbox"]:checked + label > .faq-arrow {
        transition: -webkit-transform 0.8s;
        transition: transform 0.8s;
        transition: transform 0.8s, -webkit-transform 0.8s;
        -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    .faq input[type="checkbox"]:checked + label {
        display: block;
        background: rgba(255,255,255,255) !important;
        color: #4f7351;
        height: auto;
        transition: height 0.8s;
        -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .faq input[type='checkbox']:not(:checked) + label {
        display: block;
        transition: height 0.8s;
        height: 60px;
        -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

::-webkit-scrollbar {
    display: none;
}
.main-heading h2 {
    font-size: 20px;
    color: #fff;
    background: #5c8097;
    padding: 15px;
    margin-bottom: 0;
}
